home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / putw.c < prev    next >
C/C++ Source or Header  |  1988-06-13  |  1KB  |  54 lines

  1. /* 
  2.  * putw.c --
  3.  *
  4.  *    Source code for the "putw" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: putw.c,v 1.1 88/06/13 10:00:27 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * putw --
  26.  *
  27.  *    Write an integer word out to a stream, in character byte order.
  28.  *
  29.  * Results:
  30.  *    Normally returns zero.  If an error occurs, then it returns
  31.  *    EOF.
  32.  *
  33.  * Side effects:
  34.  *    Stuff gets written on stream.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. putw(w, stream)
  41.     int w;            /* Value to write. */
  42.     register FILE *stream;    /* Where to write it. */
  43. {
  44.     register char *p;
  45.     int i;
  46.  
  47.     for (i = 0, p = (char *) &w; i < sizeof(int); i++, p++) {
  48.     if (putc(*p, stream) == EOF) {
  49.         return EOF;
  50.     }
  51.     }
  52.     return 0;
  53. }
  54.